|
Menu location |
---|
TechDraw → Dimension Radius |
Workbenches |
TechDraw |
Default shortcut |
None |
Introduced in version |
- |
See also |
None |
Instrumentul Radius Dimension adaugă o dimensiune a unei raze la o View. Cota/dimensiunea poate fi aplicată la orice margine în desenul care este un cerc sau un arc de cerc.
The TechDraw RadiusDimension tool adds a radius dimension to a View. The dimension may be applied to any edge which is a circle or circular arc.
Measuring a circle, indicating the radius
Single tool
(default): press the down arrow to the right of the To change the properties of a dimension object either double-click it in the drawing or in the Tree view. This will open the Dimension dialog.
Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension.
Cotele tip rază pot fi adăugate la Pages utilizând Python.
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
The Radius Dimension tool can be used in macros and from the Python console by using the following functions:
dim1 = FreeCAD.ActiveDocument.addObject("TechDraw::DrawViewDimension", "Dimension")
dim1.Type = "Radius"
dim1.References2D=[(view1, "Edge1")]
page.addView(dim1)